home *** CD-ROM | disk | FTP | other *** search
- var
- List: TList;
- Params: TParams;
- intParam: integer;
- begin
- ListBox5.Clear;
- List:=TList.Create;
- SQLConnection1.GetProcedureParams(
- ListBox4.Items[ListBox4.ItemIndex], List);
- Params:=TParams.Create;
- LoadParamListItems(Params, List);
- for intParam:=0 to Params.Count - 1 do
- ListBox5.Items.Add(Params.Items[intParam].Name);
- Params.Free;
- FreeProcParams(List);
- end;
-